home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / elk-2_0.lha / elk-2.0 / contrib / eval-a-string / README < prev    next >
Encoding:
Text File  |  1992-07-22  |  337 b   |  11 lines

  1. Some people seem to want a function
  2.  
  3.    char *Elk_Eval(char *expr);
  4.  
  5. that receives as an argument a string containing a Scheme expression
  6. and returns the result of evaluating the string.
  7.  
  8. Elk_Eval() stores its result in a static buffer of fixed size; this
  9. can be improved easily by passing a buffer and a length as additional
  10. arguments.
  11.